home *** CD-ROM | disk | FTP | other *** search
- import javax.microedition.lcdui.Form;
- import javax.microedition.lcdui.Gauge;
- import javax.microedition.lcdui.Item;
- import javax.microedition.lcdui.ItemStateListener;
-
- class Swarm$b extends Form implements ItemStateListener {
- // $FF: renamed from: a javax.microedition.lcdui.Gauge
- Gauge field_0;
- // $FF: synthetic field
- private final Swarm this$0;
-
- public Swarm$b(Swarm var1) {
- super("");
- this.this$0 = var1;
- this.field_0 = new Gauge("Speed Adjustment", true, 10, 6);
- ((Form)this).setItemStateListener(this);
- ((Form)this).append(this.field_0);
- }
-
- public void itemStateChanged(Item var1) {
- Swarm.access$4702(100 - this.field_0.getValue() * 10);
- }
- }
-